home *** CD-ROM | disk | FTP | other *** search
- # Path statement; these are the directories you check for programs
- # you want to run.
-
- set path=(/usr/local/bin /usr/ucb /bin /usr/bin /usr/games /etc /usr/etc .)
-
- # Save the last 22 commands issued from our tty; they can be looked up using
- # the "history" command, and invoked using ! commands.
-
- set history=22
-
- # Let you know when "You have new mail."; checks once a minute for the arrival
- # of mail, lets you know as soon as you get back to the cshell prompt.
-
- set mail=(1 /usr/spool/mail/$USER)
-
- # Cause files to be created such that no one else can read them. Read the
- # man pages on 'chmod' and on 'umask' for how to change this.
-
- umask 077
-
- # Set environment variables; these can be changed at will. Be sure that you
- # understand the consequences of changing these variables before doing so.
- #
- # The EDITOR and VISUAL variables select the default editor used by other
- # programs, particularly when composing postings or mail. "pico" and "vi"
- # are the other reasonable choices. The commented lines (starting with "#")
- # may be activated by removing the "# " characters; delete or comment out the
- # lines you don't want.
-
- # setenv EDITOR "pico"
- setenv EDITOR "emacs"
- # setenv EDITOR "vi"
- setenv VISUAL $EDITOR
- setenv SIMPLE_BACKUP_SUFFIX ".bak"
- alias mail Mail
-
- # Note that "edit" will invoke the editor specified in the variable $EDITOR,
- # which will typically be pico. This supersedes the UNIX command "edit",
- # which invokes ex.
- # Note also that "dir" shows file names with file sizes in 1024k blocks.
- #
- # RNINIT includes options for the rn and trn newsreaders, -i1 causes the
- # initial screen of each message to be headers only. Comment it out if you
- # want the first message screen to be a full screen of text.
- #
- setenv RNINIT -i1
- setenv ORGANIZATION "Express Access Online Communications, Greenbelt, MD USA"
- #
- # Aliases to make UNIX less dangerous.
- #
- alias compress compress -v
- alias cp cp -i # Prompt for approval before overwritting
- alias mv mv -i # Prompt for approval before overwritting
- alias rm rm -i # Prompt for approval before overwritting
- alias finger 'finger \!* | more' # Pause finger when screen fills
- #
- # Aliases to make UNIX commands more MSDOS-like.
- #
- alias copy cp
- alias del rm
- alias dir "ls -la \!* | more" # Pause listing when screen fills
- alias move mv
- alias type more
- #
- # Aliases to make UNIX more useful.
- #
- alias course 'lynx /homeb/sjiug/help/index.html'
- alias h history # Shortcut key for history command
- alias last 'last | more'
- alias p pine -i
-
- # edit or EDIT will invoke the editor specified above
- alias edit $EDITOR
- alias faq /pub/usenet/news.answers
-
- #
- # The following group are busy FTP sites. A connection to these sites
- # is frequently difficult to establish. The -r switch tells ncftp to keep
- # "redialing" until a connection is established. The -d1 switch tells ncftp
- # to dial every second. (The default is once a minute.) Rarely have I waited
- # more than 10/15 retries to get connected. ncftp will open the connection
- # and place you in the same directory used on your previous visit.
- #
-
- # CICA is perhaps the best depository for Windows programs. If you don't
- # want to start in the Windows directory, comment the next line and uncomment
- # the 2nd line down.
- alias cica 'ncftp -r -d1 ftp://ftp.cica.indiana.edu/pub/pc/win3'
- # alias cica 'ncftp -r -d1 ftp://ftp.cica.indiana.edu'
-
- # Garbo is a good site for many things including Unix stuff
- alias garbo 'ncftp -r -d1 ftp://garbo.uwasa.fi/unix'
-
- # Next is UIUC for downloading NCSA Mosaic
- alias mosaic 'ncftp -r -d1 ftp://ftp.ncsa.uiuc.edu/Web/Mosaic/Windows'
-
- # Set to directory /netscape/windows for downloading Netscape.
- alias netscape 'ncftp -r -d1 ftp://ftp.mcom.com:netscape/windows'
-
- # RTFM at MIT is great for Usenet FAQs
- alias rtfm 'ncftp -r -d1 ftp://rtfm.mit.edu/pub/usenet/news.answers'
-
- # SimTel is a great DOS depository. If you don't want DOS directory comment
- # the next line and uncomment the 2nd line down.
- alias simtel 'ncftp -r -d1 ftp://oak.oakland.edu/SimTel/msdos'
- # alias simtel 'ncftp -r -d1 ftp://oak.oakland.edu'
-
-
- alias start 'lynx /etc/webmenu/index.html'
- alias learn 'lynx /homeb/sjiug/help/index.html'
- alias fromurb 'cp /homeb/lejeune/map/$1 $1'
- alias getnews choosenews2
- alias getwww 'cp -i /homeb/sjiug/www/\!* $HOME/\!*'
-
- # end of .cshrc
-
-
-
-